net/http.response.bodyAllowed (method)

4 uses

	net/http (current package)
		server.go#L614: 	if !w.cw.chunking && w.bodyAllowed() {
		server.go#L1623: func (w *response) bodyAllowed() bool {
		server.go#L1693: 	if !w.bodyAllowed() {
		server.go#L1741: 	if w.req.Method != "HEAD" && w.contentLength != -1 && w.bodyAllowed() && w.contentLength != w.written {